home *** CD-ROM | disk | FTP | other *** search
- (* ResourceConstants.inc
- *
- * File included in both a Delphi application and a resource file
- * Declares constant identifiers for resources
- *)
-
- const
- (* Declare base identifiers for icons, bitmaps and string resources
- * These base values can be anything in the range 0..32,767
- *)
- BitmapBase = 10000;
- IconBase = 11000;
- TxtBase = 12000;
- UserBase = 13000;
-
- (* Declare constants for specific resources *)
-
- TxtHelloWorld = TxtBase + 1;
- TxtMessage = TxtBase + 2;
-
- TomIcon = IconBase + 1;
- JerryIcon = IconBase + 2;
-
- SeasetBitmap = BitmapBase + 1;
-
- ResourcesSourceCode = UserBase + 1;
-
-